home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / Mesa-1.2.1 / widgets / include / GL / Makefile.in < prev    next >
Encoding:
Makefile  |  1995-07-05  |  1.9 KB  |  71 lines

  1. # Makefile.in --- Mesa GL Widget for X11 Toolkit Programming
  2. # Copyright (C) 1995 by
  3. #   Jeroen van der Zijp <jvz@cyberia.cfdrc.com>
  4. #   Thorsten Ohl <Thorsten.Ohl@Physik.TH-Darmstadt.de>
  5. #
  6. # This library is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU Library General Public
  8. # License as published by the Free Software Foundation; either
  9. # version 2 of the License, or (at your option) any later version.
  10. #
  11. # This library is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU Library General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Library General Public
  17. # License along with this library; if not, write to the Free Software
  18. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. #
  20. # $Id: Makefile.in,v 1.3 1995/03/31 23:35:23 ohl Exp $
  21. #
  22. ########################################################################
  23.  
  24. SHELL = /bin/sh
  25.  
  26. srcdir = @srcdir@
  27. top_srcdir = @top_srcdir@
  28. mesa_srcdir = @mesa_srcdir@
  29. VPATH = @srcdir@
  30.  
  31. prefix = @prefix@
  32. exec_prefix = @exec_prefix@
  33.  
  34. incdir = $(prefix)/include/GL
  35.  
  36. INSTALL = @INSTALL@
  37. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  38. INSTALL_DATA = @INSTALL_DATA@
  39.  
  40. HEADERS = GLwDrawA.h GLwDrawAP.h GLwMDrawA.h GLwMDrawAP.h \
  41.       MesaDrawingArea.h MesaDrawingAreaP.h \
  42.       MesaWorkstation.h MesaWorkstationP.h
  43.  
  44. all:
  45.  
  46. install: $(HEADERS)
  47.     $(INSTALL_DATA) $(HEADERS) $(incdir)
  48.  
  49. uninstall:
  50.     cd $(incdir) && rm -f $(HEADERS)
  51.  
  52. # Standard GNU clean* targets:
  53. maintainer-clean: clean
  54.     @echo "This command is intended for maintainers to use;"
  55.     @echo "it deletes files that may require special tools to rebuild."
  56.  
  57. mostlyclean: clean
  58.  
  59. distclean: clean
  60.     rm -f Makefile
  61.  
  62. clean:
  63.     rm -f .*~ *~
  64.  
  65. # Additional clean* targets:
  66. realclean: distclean
  67.  
  68. # GNU autoconf(1) targets:
  69. Makefile: Makefile.in $(top_srcdir)/config.status
  70.     cd $(top_srcdir); $(SHELL) config.status
  71.